home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 December / Designer's Club 1998 December.iso / pc / Idea Source / main.dir / 00172.ls < prev    next >
Encoding:
Text File  |  1998-11-02  |  625 b   |  24 lines

  1. on exitFrame
  2.   go(the frame)
  3.   if rollOver(50) then
  4.     set the visible of sprite 41 to 0
  5.     set the visible of sprite 44 to 1
  6.     set the visible of sprite 48 to 1
  7.   end if
  8.   if not rollOver(50) then
  9.     set the visible of sprite 41 to 1
  10.     set the visible of sprite 44 to 0
  11.     set the visible of sprite 48 to 0
  12.   end if
  13.   if rollOver(51) then
  14.     set the visible of sprite 42 to 0
  15.     set the visible of sprite 45 to 1
  16.     set the visible of sprite 47 to 1
  17.   end if
  18.   if not rollOver(51) then
  19.     set the visible of sprite 42 to 1
  20.     set the visible of sprite 45 to 0
  21.     set the visible of sprite 47 to 0
  22.   end if
  23. end
  24.